pythonPackages.crashtest: init at 0.3.0
This commit is contained in:
parent
b5badcf3d3
commit
b8d1c67679
25
pkgs/development/python-modules/crashtest/default.nix
Normal file
25
pkgs/development/python-modules/crashtest/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchFromGitHub, fetchPypi, isPy27, pytest }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "crashtest";
|
||||||
|
version = "0.3.0";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "056zzbznl3xfnbblfci8lvcam3h7k7va68vi6asrm4q0ck4nrh79";
|
||||||
|
};
|
||||||
|
|
||||||
|
# has tests, but only on GitHub, however the pyproject build fails for me
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"crashtest.frame"
|
||||||
|
"crashtest.inspector"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/sdispater/crashtest";
|
||||||
|
description = "Manage Python errors with ease";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
};
|
||||||
|
}
|
@ -2030,6 +2030,8 @@ in {
|
|||||||
|
|
||||||
cornice = callPackage ../development/python-modules/cornice { };
|
cornice = callPackage ../development/python-modules/cornice { };
|
||||||
|
|
||||||
|
crashtest = callPackage ../development/python-modules/crashtest { };
|
||||||
|
|
||||||
cram = callPackage ../development/python-modules/cram { };
|
cram = callPackage ../development/python-modules/cram { };
|
||||||
|
|
||||||
crc16 = callPackage ../development/python-modules/crc16 { };
|
crc16 = callPackage ../development/python-modules/crc16 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user