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

24 lines
504 B
Nix
Raw Normal View History

2017-12-30 12:48:07 +00:00
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "extras";
2017-12-30 12:48:22 +00:00
version = "1.0.0";
2017-12-30 12:48:07 +00:00
src = fetchPypi {
inherit pname version;
2017-12-30 12:48:22 +00:00
sha256 = "132e36de10b9c91d5d4cc620160a476e0468a88f16c9431817a6729611a81b4e";
2017-12-30 12:48:07 +00:00
};
# error: invalid command 'test'
doCheck = false;
meta = {
description = "Useful extra bits for Python - things that should be in the standard library";
homepage = "https://github.com/testing-cabal/extras";
2017-12-30 12:48:07 +00:00
license = lib.licenses.mit;
};
}