mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 07:05:13 +00:00
2000ef604b
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-wsproto/versions
21 lines
359 B
Nix
21 lines
359 B
Nix
{ buildPythonPackage, fetchPypi, h11, enum34, pytest }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "wsproto";
|
|
version = "0.14.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1p24dmym6pfsqsyxps6m2cxfl36cmkri0kdy5y5q7s300j3xmhsm";
|
|
};
|
|
|
|
propagatedBuildInputs = [ h11 enum34 ];
|
|
|
|
checkInputs = [ pytest ];
|
|
|
|
checkPhase = ''
|
|
py.test
|
|
'';
|
|
|
|
}
|