My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/sexpdata/default.nix

23 lines
426 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "sexpdata";
version = "0.0.3";
src = fetchPypi {
inherit pname version;
sha256 = "1ac827a616c5e87ebb60fd6686fb86f8a166938c645f4089d92de3ffbdd494e0";
};
doCheck = false;
meta = with lib; {
description = "S-expression parser for Python";
homepage = "https://github.com/tkf/sexpdata";
license = licenses.bsd0;
};
}