blob: 3237f2b5511d6d0f63e475f5785088b2d8d57cd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
{ pythonPackages }: with pythonPackages;
buildPythonPackage rec {
pname = "wokkel";
version = "18.0.0";
src = fetchPypi {
inherit pname version;
sha256 = "1spq44gg8gsviqx1dvlmjpgfc0wk0jpyx4ap01y2pad1ai9cw016";
};
propagatedBuildInputs = [ twisted.extras.tls twisted incremental dateutil ];
doCheck = false;
}
|