mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
0aa3b6c0bf
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.6-d2to1/versions
26 lines
552 B
Nix
26 lines
552 B
Nix
{ buildPythonPackage
|
|
, lib
|
|
, fetchFromGitHub
|
|
, nose
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "d2to1";
|
|
version = "0.2.12.post1";
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "embray";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1hzq51qbzsc27yy8swp08kf42mamag7qcabbrigzj4m6ivb5chi2";
|
|
};
|
|
|
|
meta = with lib;{
|
|
description = "Support for distutils2-like setup.cfg files as package metadata";
|
|
homepage = https://github.com/embray/d2to1;
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ makefu ];
|
|
};
|
|
}
|