mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 05:23:54 +00:00
python310Packages.overly: init at 0.1.85
This commit is contained in:
parent
2aa3a9bba0
commit
0a24fb2a96
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 { };
|
openapi-core = callPackage ../development/python-modules/openapi-core { };
|
||||||
|
|
||||||
|
overly = callPackage ../development/python-modules/overly { };
|
||||||
|
|
||||||
pandas-stubs = callPackage ../development/python-modules/pandas-stubs { };
|
pandas-stubs = callPackage ../development/python-modules/pandas-stubs { };
|
||||||
|
|
||||||
parameterizedtestcase = callPackage ../development/python-modules/parameterizedtestcase { };
|
parameterizedtestcase = callPackage ../development/python-modules/parameterizedtestcase { };
|
||||||
|
Loading…
Reference in New Issue
Block a user