mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
attrs-strict: init at 1.0.0
This commit is contained in:
parent
4712a21367
commit
44f31c7151
23
pkgs/software-heritage/attrs-strict.nix
Normal file
23
pkgs/software-heritage/attrs-strict.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, lib, python3Packages, ... }:
|
||||||
|
|
||||||
|
with python3Packages;
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "attrs_strict";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "sha256-YybB5RxP0v/8ndYH3sBsMa3WTu29N6ZR6oj2Y6N8Pxg";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
setuptools-scm
|
||||||
|
attrs
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/bloomberg/attrs-strict";
|
||||||
|
description = "Runtime validators for attrs";
|
||||||
|
license = licenses.asl20;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user