pythonPackages.debian: Move to own file
This commit is contained in:
committed by
Frederik Rietdijk
parent
15ae9cfeca
commit
adb19caa9d
14
pkgs/development/python-modules/debian/default.nix
Normal file
14
pkgs/development/python-modules/debian/default.nix
Normal file
@@ -0,0 +1,14 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, chardet, six}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "python-debian";
|
||||
version = "0.1.23";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "193faznwnjc3n5991wyzim6h9gyq1zxifmfrnpm3avgkh7ahyynh";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ chardet six ];
|
||||
}
|
||||
Reference in New Issue
Block a user