mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
ee4d0ce62b
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-dugong/versions
15 lines
350 B
Nix
15 lines
350 B
Nix
{ buildPythonPackage, fetchPypi, pythonOlder }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dugong";
|
|
version = "3.7.5";
|
|
|
|
disabled = pythonOlder "3.3"; # Library does not support versions older than 3.3
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
extension = "tar.bz2";
|
|
sha256 = "10vjdp21m0gzm096lgl84z184s5l9iz69ppj6acgsc125037dl6h";
|
|
};
|
|
}
|