nixpkgs/pkgs/development/python-modules/apipkg/default.nix

25 lines
497 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi
, pytest }:
buildPythonPackage rec {
pname = "apipkg";
2018-07-22 13:04:13 +03:00
version = "1.5";
src = fetchPypi {
inherit pname version;
2018-07-22 13:04:13 +03:00
sha256 = "37228cda29411948b422fae072f57e31d3396d2ee1c9783775980ee9c9990af6";
};
buildInputs = [ pytest ];
checkPhase = ''
py.test
'';
meta = with stdenv.lib; {
description = "Namespace control and lazy-import mechanism";
homepage = https://bitbucket.org/hpk42/apipkg;
license = licenses.mit;
};
}