nixpkgs/pkgs/development/python-modules/serpent/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

33 lines
667 B
Nix

{ stdenv
, buildPythonPackage
, fetchPypi
, lib
, python
, isPy27
, isPy33
, enum34
}:
buildPythonPackage rec {
pname = "serpent";
version = "1.27";
src = fetchPypi {
inherit pname version;
sha256 = "6f8dc4317fb5b5a9629b5e518846bc9fee374b8171533726dc68df52b36ee912";
};
propagatedBuildInputs = lib.optionals (isPy27 || isPy33) [ enum34 ];
checkPhase = ''
${python.interpreter} setup.py test
'';
meta = with stdenv.lib; {
description = "A simple serialization library based on ast.literal_eval";
homepage = https://github.com/irmen/Serpent;
license = licenses.mit;
maintainers = with maintainers; [ prusnak ];
};
}