Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "UkPostcodeParser"; 5 version = "1.1.1"; 6 name = "${pname}-${version}"; 7 8 src = fetchPypi { 9 inherit pname version; 10 sha256 = "b7a7ac19d48897637c7aaa2f2970288f1c260e4a99140bf04c6086cf65576c6b"; 11 }; 12 13 doCheck = false; 14 15 meta = with lib; { 16 description = "UK Postcode parser"; 17 homepage = https://github.com/hamstah/ukpostcodeparser; 18 license = licenses.publicDomain; 19 maintainers = with maintainers; [ siddharthist ]; 20 platforms = platforms.unix; 21 }; 22}