pythonPackages.debian: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 12:42:10 +02:00
committed by Frederik Rietdijk
parent 15ae9cfeca
commit adb19caa9d
2 changed files with 15 additions and 10 deletions

View 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 ];
}