python3Packages.schiene: init at 0.23
This commit is contained in:
parent
a8040c700a
commit
b9a135ecc5
33
pkgs/development/python-modules/schiene/default.nix
Normal file
33
pkgs/development/python-modules/schiene/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, requests
|
||||||
|
, beautifulsoup4
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "schiene";
|
||||||
|
version = "0.23";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "014aaxmk7yxyml1xgfk3zqallyb5zi04m0v7jgqjkbjqq4n4j3ck";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
requests
|
||||||
|
beautifulsoup4
|
||||||
|
];
|
||||||
|
|
||||||
|
# tests are not present
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "schiene" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python library for interacting with Bahn.de";
|
||||||
|
homepage = "https://github.com/kennell/schiene";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -6620,6 +6620,8 @@ in {
|
|||||||
|
|
||||||
schema = callPackage ../development/python-modules/schema { };
|
schema = callPackage ../development/python-modules/schema { };
|
||||||
|
|
||||||
|
schiene = callPackage ../development/python-modules/schiene { };
|
||||||
|
|
||||||
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
|
scikit-bio = callPackage ../development/python-modules/scikit-bio { };
|
||||||
|
|
||||||
scikit-build = callPackage ../development/python-modules/scikit-build { };
|
scikit-build = callPackage ../development/python-modules/scikit-build { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user