Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "should-dsl"; 5 version = "2.1.2"; 6 7 src = fetchPypi { 8 inherit version; 9 pname = "should_dsl"; 10 sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn"; 11 }; 12 13 # There are no tests 14 doCheck = false; 15 16 meta = with lib; { 17 description = "Should assertions in Python as clear and readable as possible"; 18 homepage = "http://www.should-dsl.info/"; 19 license = licenses.mit; 20 maintainers = with maintainers; [ jluttine ]; 21 }; 22}