1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #306275 from Mic92/units

python3.pkgs.units: remove
This commit is contained in:
Aleksana 2024-04-24 02:07:47 +08:00 committed by GitHub
commit 2d3babedab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 24 deletions

View file

@ -1,22 +0,0 @@
{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "units";
version = "0.07";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "43eb3e073e1b11289df7b1c3f184b5b917ccad178b717b03933298716f200e14";
};
meta = with lib; {
description = "Python support for quantities with units";
homepage = "https://bitbucket.org/adonohue/units/";
license = licenses.psfl;
maintainers = [ ];
};
}

View file

@ -16350,8 +16350,6 @@ self: super: with self; {
unique-log-filter = callPackage ../development/python-modules/unique-log-filter { };
units = callPackage ../development/python-modules/units { };
unittest-data-provider = callPackage ../development/python-modules/unittest-data-provider { };
unittest-xml-reporting = callPackage ../development/python-modules/unittest-xml-reporting { };