python310Packages.overly: init at 0.1.85
This commit is contained in:
parent
2aa3a9bba0
commit
0a24fb2a96
2 changed files with 42 additions and 0 deletions
40
pkgs/development/python-modules/overly/default.nix
Normal file
40
pkgs/development/python-modules/overly/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, h11
|
||||
, sansio-multipart
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "overly";
|
||||
version = "0.1.85";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "20a99526c7859acc859e87afd97b5c4916405e7477834f727b49210e478370cb";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
h11
|
||||
sansio-multipart
|
||||
];
|
||||
|
||||
# upstream has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "overly" ];
|
||||
|
||||
meta = {
|
||||
description = "An overly configurable http server for client testing";
|
||||
homepage = "https://github.com/theelous3/overly";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ dotlambda ];
|
||||
broken = stdenv.isDarwin; # https://github.com/theelous3/overly/issues/2
|
||||
};
|
||||
}
|
|
@ -6441,6 +6441,8 @@ in {
|
|||
|
||||
openapi-core = callPackage ../development/python-modules/openapi-core { };
|
||||
|
||||
overly = callPackage ../development/python-modules/overly { };
|
||||
|
||||
pandas-stubs = callPackage ../development/python-modules/pandas-stubs { };
|
||||
|
||||
parameterizedtestcase = callPackage ../development/python-modules/parameterizedtestcase { };
|
||||
|
|
Loading…
Reference in a new issue