15 lines
300 B
Nix
15 lines
300 B
Nix
{ stdenv, buildPythonPackage, fetchPypi
|
|
, chardet, six}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-debian";
|
|
version = "0.1.23";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "193faznwnjc3n5991wyzim6h9gyq1zxifmfrnpm3avgkh7ahyynh";
|
|
};
|
|
|
|
propagatedBuildInputs = [ chardet six ];
|
|
}
|