lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.schiene: init at 0.23

+35
+33
pkgs/development/python-modules/schiene/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , requests 5 + , beautifulsoup4 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "schiene"; 10 + version = "0.23"; 11 + 12 + src = fetchPypi { 13 + inherit pname version; 14 + sha256 = "014aaxmk7yxyml1xgfk3zqallyb5zi04m0v7jgqjkbjqq4n4j3ck"; 15 + }; 16 + 17 + propagatedBuildInputs = [ 18 + requests 19 + beautifulsoup4 20 + ]; 21 + 22 + # tests are not present 23 + doCheck = false; 24 + 25 + pythonImportsCheck = [ "schiene" ]; 26 + 27 + meta = with lib; { 28 + description = "Python library for interacting with Bahn.de"; 29 + homepage = "https://github.com/kennell/schiene"; 30 + license = with licenses; [ mit ]; 31 + maintainers = with maintainers; [ fab ]; 32 + }; 33 + }
+2
pkgs/top-level/python-packages.nix
··· 6620 6620 6621 6621 schema = callPackage ../development/python-modules/schema { }; 6622 6622 6623 + schiene = callPackage ../development/python-modules/schiene { }; 6624 + 6623 6625 scikit-bio = callPackage ../development/python-modules/scikit-bio { }; 6624 6626 6625 6627 scikit-build = callPackage ../development/python-modules/scikit-build { };