pythonPackages.sexpdata: refactor move to python-modules

This commit is contained in:
Chris Ostrouchov
2018-10-30 00:50:47 -04:00
parent af9b13436b
commit 97c89d95d7
2 changed files with 24 additions and 15 deletions
@@ -0,0 +1,23 @@
{ stdenv
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sexpdata";
version = "0.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "eb696bc66b35def5fb356de09481447dff4e9a3ed926823134e1d0f35eade428";
};
doCheck = false;
meta = with stdenv.lib; {
description = "S-expression parser for Python";
homepage = "https://github.com/tkf/sexpdata";
license = licenses.bsd0;
};
}